Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 26 | Author: huxn-webdev
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Tabed Navigation</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div class="tadded-container">
      <div class="container">
        <div class="menu_Links">
          <ul>
            <li class="active">About</li>
            <li>Courses</li>
            <li>Contact</li>
          </ul>
        </div>

        <div class="sections">
          <section class="about_section visible" data-section="About">
            <h2>About Me</h2>
            <img
              src="https://avatars.githubusercontent.com/u/85052811?v=4"
              alt="About Image"
            />
            <h4>HuXn WebDev</h4>
            <p>
              I am HuXn Web Developer, I've worked with lot's of popular &
              unpopular technologies, frameworks & libraries like react, angular
              vue & dozens of more & not just frameworks & libraries but also
              different programming languages like Python, JavaScript, Golang,
              Java, C, C++, etc. build countless projects in different
              technologies & frameworks, I started programming at the age of 10,
              Now I know enough to teach programming online, I enjoy teaching
              others how to code and solve their problems, that's why I created
              YouTube channel (HuXn WebDev) where I share all of my knowledge
              with the world.
            </p>
          </section>

          <section class="courses_section" data-section="Courses">
            <h2>COURSES</h2>
            <a
              href="https://www.youtube.com/playlist?list=PLSDeUiTMfxW41HftXEup62r1zq5I1KosE"
            >
              <div class="team_box">
                <img src="images/html.png" />
                <h4>HTML COMPLETE GUIDE</h4>
              </div>
            </a>
            <a
              href="https://www.youtube.com/playlist?list=PLSDeUiTMfxW41HftXEup62r1zq5I1KosE"
            >
              <div class="team_box">
                <img src="images/css.png" />
                <h4>CSS COMPLETE GUIDE</h4>
              </div>
            </a>
            <a
              href="https://www.youtube.com/playlist?list=PLSDeUiTMfxW5iYhG1Hv4JKQL0Rzylb76p"
            >
              <div class="team_box">
                <img src="images/js.png" />
                <h4>NEXT LEVEL JAVASCRIPT</h4>
              </div>
            </a>
            <a
              href="https://www.youtube.com/playlist?list=PLSDeUiTMfxW7sbxhTa8vJZ9xyKret_RiN"
            >
              <div class="team_box">
                <img src="images/vscode.png" />
                <h4>VSCODE COMPLETE GUIDE</h4>
              </div>
            </a>
            <a
              href="https://www.youtube.com/playlist?list=PLSDeUiTMfxW5MYRChTYlqKwgXE289Flok"
            >
              <div class="team_box">
                <img src="images/git and github.png" />
                <h4>GIT AND GITHUB COMPLETE GUDIE</h4>
              </div>
            </a>
            <a
              href="https://www.youtube.com/playlist?list=PLSDeUiTMfxW5oeotfGiqAZC0LDQ9Y-Q52"
            >
              <div class="team_box">
                <img src="images/go.png" />
                <h4>GOLANG COMPLETE GUIDE</h4>
              </div>
            </a>
          </section>

          <section class="contact_section" data-section="Contact">
            <h2>Contact</h2>
            <div class="social_Links">
              <a href="https://www.youtube.com/channel/UCbBt6Ks7M5BZx_GHgGO_UNQ"
                >YouTube</a
              >
              <a href="https://twitter.com/AcademyWebdev">Twitter</a>
              <a href="https://www.udemy.com/user/huxn-webdev/">Udemy</a>
              <a href="https://www.instagram.com/huxn_webdev/">Instagram</a>
              <a href="https://github.com/huxn-webdev">Github</a>
            </div>
          </section>
        </div>
      </div>
    </div>

    <script src="app.js"></script>
  </body>
</html>